home *** CD-ROM | disk | FTP | other *** search
/ PD ROM 1 / PD ROM Volume I - Macintosh Software from BMUG (1988).iso / Stacks / Hyper Education / Library Hyper Card Templates / Open Stack / Acquisitions Help / background_2584.txt < prev    next >
Encoding:
Text File  |  1987-12-04  |  12.7 KB  |  580 lines

  1. -- background: 2584 from stack: in
  2. -- bmap block id: 4289
  3. -- flags: 0000
  4. -- background id: 0
  5. -- name: 
  6.  
  7.  
  8. -- part 8 (button)
  9. -- low flags: 00
  10. -- high flags: 0000
  11. -- rect: left=256 top=318 right=341 bottom=281
  12. -- title width / last selected line: 0
  13. -- icon id / first selected line: 27009 / 27009
  14. -- text alignment: 1
  15. -- font id: 0
  16. -- text size: 12
  17. -- style flags: 0
  18. -- line height: 16
  19. -- part name: Next
  20. ----- HyperTalk script -----
  21. on mouseUp
  22.  
  23. end mouseUp
  24.  
  25.  
  26.  
  27. -- part 9 (button)
  28. -- low flags: 00
  29. -- high flags: 0000
  30. -- rect: left=201 top=317 right=340 bottom=227
  31. -- title width / last selected line: 0
  32. -- icon id / first selected line: 9301 / 9301
  33. -- text alignment: 1
  34. -- font id: 0
  35. -- text size: 12
  36. -- style flags: 0
  37. -- line height: 16
  38. -- part name: Prev
  39. ----- HyperTalk script -----
  40. on mouseUp
  41.  
  42. end mouseUp
  43.  
  44.  
  45.  
  46. -- part 55 (field)
  47. -- low flags: 00
  48. -- high flags: 0007
  49. -- rect: left=89 top=88 right=121 bottom=485
  50. -- title width / last selected line: 0
  51. -- icon id / first selected line: 0 / 0
  52. -- text alignment: 0
  53. -- font id: 2
  54. -- text size: 12
  55. -- style flags: 256
  56. -- line height: 16
  57. -- part name: Author
  58.  
  59.  
  60. -- part 36 (field)
  61. -- low flags: 00
  62. -- high flags: 0007
  63. -- rect: left=66 top=52 right=87 bottom=464
  64. -- title width / last selected line: 0
  65. -- icon id / first selected line: 0 / 0
  66. -- text alignment: 0
  67. -- font id: 2
  68. -- text size: 12
  69. -- style flags: 256
  70. -- line height: 16
  71. -- part name: Title
  72.  
  73.  
  74. -- part 57 (field)
  75. -- low flags: 00
  76. -- high flags: 0000
  77. -- rect: left=79 top=124 right=141 bottom=263
  78. -- title width / last selected line: 0
  79. -- icon id / first selected line: 0 / 0
  80. -- text alignment: 0
  81. -- font id: 2
  82. -- text size: 12
  83. -- style flags: 256
  84. -- line height: 16
  85. -- part name: Publisher
  86.  
  87.  
  88. -- part 51 (field)
  89. -- low flags: 00
  90. -- high flags: 0000
  91. -- rect: left=298 top=125 right=141 bottom=361
  92. -- title width / last selected line: 0
  93. -- icon id / first selected line: 0 / 0
  94. -- text alignment: 0
  95. -- font id: 2
  96. -- text size: 12
  97. -- style flags: 256
  98. -- line height: 16
  99. -- part name: Date
  100. ----- HyperTalk script -----
  101. on closeField
  102.   global fieldList
  103.   put word 3 of name of me into tempName
  104.   if not(fieldList contains tempName) then
  105.     put (word 3 of name of me) & "," after fieldList
  106.   end if
  107. end closeField
  108.  
  109.  
  110. -- part 21 (field)
  111. -- low flags: 00
  112. -- high flags: 0000
  113. -- rect: left=55 top=205 right=221 bottom=127
  114. -- title width / last selected line: 0
  115. -- icon id / first selected line: 0 / 0
  116. -- text alignment: 0
  117. -- font id: 2
  118. -- text size: 12
  119. -- style flags: 256
  120. -- line height: 16
  121. -- part name: Price
  122. ----- HyperTalk script -----
  123. on closeField
  124.   global fieldList
  125.   put word 3 of name of me into tempName
  126.   if not(fieldList contains tempName) then
  127.     put (word 3 of name of me) & "," after fieldList
  128.   end if
  129.  
  130.   put empty into field "total"
  131.   add field "price" to field "total"
  132.   add field "shipping" to field "total"
  133.   add field "tax" to field "total"
  134.  
  135. end closeField
  136.  
  137.  
  138. -- part 22 (field)
  139. -- low flags: 00
  140. -- high flags: 0000
  141. -- rect: left=198 top=205 right=221 bottom=265
  142. -- title width / last selected line: 0
  143. -- icon id / first selected line: 0 / 0
  144. -- text alignment: 0
  145. -- font id: 2
  146. -- text size: 12
  147. -- style flags: 256
  148. -- line height: 16
  149. -- part name: Shipping
  150. ----- HyperTalk script -----
  151. on closeField
  152.   global fieldList
  153.   put word 3 of name of me into tempName
  154.   if not(fieldList contains tempName) then
  155.     put (word 3 of name of me) & "," after fieldList
  156.   end if
  157.  
  158.   put empty into field "total"
  159.   add field "price" to field "total"
  160.   add field "shipping" to field "total"
  161.   add field "tax" to field "total"
  162.  
  163. end closeField
  164.  
  165.  
  166. -- part 23 (field)
  167. -- low flags: 00
  168. -- high flags: 0000
  169. -- rect: left=294 top=204 right=220 bottom=345
  170. -- title width / last selected line: 0
  171. -- icon id / first selected line: 0 / 0
  172. -- text alignment: 0
  173. -- font id: 2
  174. -- text size: 12
  175. -- style flags: 256
  176. -- line height: 16
  177. -- part name: Tax
  178. ----- HyperTalk script -----
  179. on closeField
  180.   global fieldList
  181.   put word 3 of name of me into tempName
  182.   if not(fieldList contains tempName) then
  183.     put (word 3 of name of me) & "," after fieldList
  184.   end if
  185.  
  186.   put empty into field "total"
  187.   add field "price" to field "total"
  188.   add field "shipping" to field "total"
  189.   add field "tax" to field "total"
  190.  
  191. end closeField
  192.  
  193.  
  194. -- part 24 (field)
  195. -- low flags: 00
  196. -- high flags: 0002
  197. -- rect: left=405 top=202 right=222 bottom=491
  198. -- title width / last selected line: 0
  199. -- icon id / first selected line: 0 / 0
  200. -- text alignment: 0
  201. -- font id: 2
  202. -- text size: 14
  203. -- style flags: 256
  204. -- line height: 18
  205. -- part name: Total
  206. ----- HyperTalk script -----
  207. on closeField
  208.   global fieldList
  209.   put word 3 of name of me into tempName
  210.   if not(fieldList contains tempName) then
  211.     put (word 3 of name of me) & "," after fieldList
  212.   end if
  213. end closeField
  214.  
  215.  
  216. -- part 25 (field)
  217. -- low flags: 00
  218. -- high flags: 0000
  219. -- rect: left=85 top=234 right=249 bottom=158
  220. -- title width / last selected line: 0
  221. -- icon id / first selected line: 0 / 0
  222. -- text alignment: 0
  223. -- font id: 2
  224. -- text size: 12
  225. -- style flags: 0
  226. -- line height: 16
  227. -- part name: Date paid
  228. ----- HyperTalk script -----
  229. on closeField
  230.   global fieldList
  231.   put word 3 of name of me into tempName
  232.   if not(fieldList contains tempName) then
  233.     put (word 3 of name of me) & "," after fieldList
  234.   end if
  235. end closeField
  236.  
  237.  
  238. -- part 26 (field)
  239. -- low flags: 00
  240. -- high flags: 0000
  241. -- rect: left=259 top=233 right=249 bottom=328
  242. -- title width / last selected line: 0
  243. -- icon id / first selected line: 0 / 0
  244. -- text alignment: 0
  245. -- font id: 3
  246. -- text size: 12
  247. -- style flags: 0
  248. -- line height: 16
  249. -- part name: Date returned
  250. ----- HyperTalk script -----
  251. on closeField
  252.   global fieldList
  253.   put word 3 of name of me into tempName
  254.   if not(fieldList contains tempName) then
  255.     put (word 3 of name of me) & "," after fieldList
  256.   end if
  257. end closeField
  258.  
  259.  
  260. -- part 28 (button)
  261. -- low flags: 00
  262. -- high flags: 8003
  263. -- rect: left=281 top=318 right=339 bottom=382
  264. -- title width / last selected line: 0
  265. -- icon id / first selected line: 0 / 0
  266. -- text alignment: 1
  267. -- font id: 0
  268. -- text size: 12
  269. -- style flags: 0
  270. -- line height: 16
  271. -- part name: Catalog Screen
  272. ----- HyperTalk script -----
  273. on mouseUp
  274.   answer "This takes you to the catalog screen"
  275. end mouseUp
  276.  
  277.  
  278. -- part 29 (button)
  279. -- low flags: 00
  280. -- high flags: 8003
  281. -- rect: left=383 top=317 right=339 bottom=496
  282. -- title width / last selected line: 0
  283. -- icon id / first selected line: 0 / 0
  284. -- text alignment: 1
  285. -- font id: 0
  286. -- text size: 12
  287. -- style flags: 0
  288. -- line height: 16
  289. -- part name: Circulation Card
  290. ----- HyperTalk script -----
  291. on mouseUp
  292.   answer "This takes you to the Circulation Screen"
  293. end mouseUp
  294.  
  295.  
  296. -- part 31 (button)
  297. -- low flags: 00
  298. -- high flags: 8003
  299. -- rect: left=216 top=276 right=299 bottom=272
  300. -- title width / last selected line: 0
  301. -- icon id / first selected line: 0 / 0
  302. -- text alignment: 1
  303. -- font id: 0
  304. -- text size: 12
  305. -- style flags: 0
  306. -- line height: 16
  307. -- part name: Help!
  308.  
  309.  
  310. -- part 32 (field)
  311. -- low flags: 00
  312. -- high flags: 0000
  313. -- rect: left=350 top=164 right=180 bottom=427
  314. -- title width / last selected line: 0
  315. -- icon id / first selected line: 0 / 0
  316. -- text alignment: 0
  317. -- font id: 2
  318. -- text size: 12
  319. -- style flags: 0
  320. -- line height: 16
  321. -- part name: Date ordered
  322. ----- HyperTalk script -----
  323. on closeField
  324.   global fieldList
  325.   put word 3 of name of me into tempName
  326.   if not(fieldList contains tempName) then
  327.     put (word 3 of name of me) & "," after fieldList
  328.   end if
  329. end closeField
  330.  
  331.  
  332. -- part 33 (field)
  333. -- low flags: 00
  334. -- high flags: 0000
  335. -- rect: left=350 top=182 right=198 bottom=429
  336. -- title width / last selected line: 0
  337. -- icon id / first selected line: 0 / 0
  338. -- text alignment: 0
  339. -- font id: 2
  340. -- text size: 12
  341. -- style flags: 0
  342. -- line height: 16
  343. -- part name: Date received
  344. ----- HyperTalk script -----
  345. on closeField
  346.   global fieldList
  347.   put word 3 of name of me into tempName
  348.   if not(fieldList contains tempName) then
  349.     put (word 3 of name of me) & "," after fieldList
  350.   end if
  351. end closeField
  352.  
  353.  
  354. -- part 45 (field)
  355. -- low flags: 00
  356. -- high flags: 0000
  357. -- rect: left=500 top=330 right=342 bottom=512
  358. -- title width / last selected line: 0
  359. -- icon id / first selected line: 0 / 0
  360. -- text alignment: 0
  361. -- font id: 3
  362. -- text size: 12
  363. -- style flags: 0
  364. -- line height: 16
  365. -- part name: der
  366. ----- HyperTalk script -----
  367. on closeField
  368.   get field "der"
  369.   put the number of this card into cardNum
  370.   set lockScreen to true
  371.   push card
  372.   go to card cardNum of stack "HyperCirc"
  373.   put it into background field "Title"
  374.   pop card
  375.   set lockscreen to false
  376. end closeField
  377.  
  378.  
  379.  
  380. -- part 52 (field)
  381. -- low flags: 00
  382. -- high flags: 0002
  383. -- rect: left=134 top=156 right=171 bottom=213
  384. -- title width / last selected line: 0
  385. -- icon id / first selected line: 0 / 0
  386. -- text alignment: 0
  387. -- font id: 2
  388. -- text size: 12
  389. -- style flags: 256
  390. -- line height: 16
  391. -- part name: Vendor number
  392. ----- HyperTalk script -----
  393. on closeField
  394.   global fieldList
  395.   put word 3 of name of me into tempName
  396.   if not(fieldList contains tempName) then
  397.     put (word 3 of name of me) & "," after fieldList
  398.   end if
  399. end closeField
  400.  
  401.  
  402. -- part 62 (field)
  403. -- low flags: 01
  404. -- high flags: 0000
  405. -- rect: left=414 top=233 right=249 bottom=489
  406. -- title width / last selected line: 0
  407. -- icon id / first selected line: 0 / 0
  408. -- text alignment: 0
  409. -- font id: 2
  410. -- text size: 12
  411. -- style flags: 256
  412. -- line height: 16
  413. -- part name: Today's date
  414.  
  415.  
  416. -- part 64 (field)
  417. -- low flags: 00
  418. -- high flags: 0002
  419. -- rect: left=398 top=122 right=138 bottom=485
  420. -- title width / last selected line: 0
  421. -- icon id / first selected line: 0 / 0
  422. -- text alignment: 0
  423. -- font id: 3
  424. -- text size: 12
  425. -- style flags: 0
  426. -- line height: 16
  427. -- part name: ISBN
  428. ----- HyperTalk script -----
  429. on closeField
  430.   global fieldList
  431.   put word 3 of name of me into tempName
  432.   if not(fieldList contains tempName) then
  433.     put (word 3 of name of me) & "," after fieldList
  434.   end if
  435. end closeField
  436.  
  437.  
  438. -- part 65 (field)
  439. -- low flags: 00
  440. -- high flags: 0002
  441. -- rect: left=399 top=142 right=158 bottom=485
  442. -- title width / last selected line: 0
  443. -- icon id / first selected line: 0 / 0
  444. -- text alignment: 0
  445. -- font id: 3
  446. -- text size: 12
  447. -- style flags: 0
  448. -- line height: 16
  449. -- part name: LCCN
  450. ----- HyperTalk script -----
  451. on closeField
  452.   global fieldList
  453.   put word 3 of name of me into tempName
  454.   if not(fieldList contains tempName) then
  455.     put (word 3 of name of me) & "," after fieldList
  456.   end if
  457. end closeField
  458.  
  459.  
  460. -- part 67 (button)
  461. -- low flags: 00
  462. -- high flags: 8003
  463. -- rect: left=162 top=318 right=340 bottom=198
  464. -- title width / last selected line: 0
  465. -- icon id / first selected line: 0 / 0
  466. -- text alignment: 1
  467. -- font id: 0
  468. -- text size: 12
  469. -- style flags: 0
  470. -- line height: 16
  471. -- part name: Sort
  472. ----- HyperTalk script -----
  473. on mouseUp
  474.   answer "This lets you sort on any field."
  475. end mouseUp
  476.  
  477.  
  478.  
  479. -- part 79 (button)
  480. -- low flags: 00
  481. -- high flags: 8003
  482. -- rect: left=9 top=318 right=339 bottom=91
  483. -- title width / last selected line: 0
  484. -- icon id / first selected line: 0 / 0
  485. -- text alignment: 1
  486. -- font id: 0
  487. -- text size: 12
  488. -- style flags: 0
  489. -- line height: 16
  490. -- part name: Print Labels
  491. ----- HyperTalk script -----
  492. on mouseUp
  493.   answer "This takes you to the Labels screen"
  494. end mouseUp
  495.  
  496.  
  497.  
  498. -- part 80 (button)
  499. -- low flags: 00
  500. -- high flags: 8003
  501. -- rect: left=90 top=318 right=340 bottom=163
  502. -- title width / last selected line: 0
  503. -- icon id / first selected line: 0 / 0
  504. -- text alignment: 1
  505. -- font id: 0
  506. -- text size: 12
  507. -- style flags: 0
  508. -- line height: 16
  509. -- part name: Control
  510. ----- HyperTalk script -----
  511. on mouseUp
  512.   answer"This takes you to the Control stack"
  513. end mouseUp
  514.  
  515.  
  516.  
  517. -- part 106 (field)
  518. -- low flags: 00
  519. -- high flags: 0000
  520. -- rect: left=388 top=35 right=52 bottom=454
  521. -- title width / last selected line: 0
  522. -- icon id / first selected line: 0 / 0
  523. -- text alignment: 0
  524. -- font id: 2
  525. -- text size: 12
  526. -- style flags: 256
  527. -- line height: 16
  528. -- part name: Book Number
  529. ----- HyperTalk script -----
  530. on closeField
  531.   global fieldList,bookNumber,tentativeBook
  532.   if tentativeBook is true then
  533.     put field "Book Number" into bookNumber
  534.   else
  535.  
  536.     put word 3 of name of me into tempName
  537.     if not(fieldList contains tempName) then
  538.       put (word 3 of name of me) & "," after fieldList
  539.     end if
  540.   end if
  541. end closeField
  542.  
  543.  
  544. -- part 108 (button)
  545. -- low flags: 00
  546. -- high flags: 8003
  547. -- rect: left=226 top=301 right=318 bottom=264
  548. -- title width / last selected line: 0
  549. -- icon id / first selected line: 0 / 0
  550. -- text alignment: 1
  551. -- font id: 0
  552. -- text size: 12
  553. -- style flags: 0
  554. -- line height: 16
  555. -- part name: Find
  556. ----- HyperTalk script -----
  557. on mouseUp
  558.   answer "This lets you find records"
  559. end mouseUp
  560.  
  561.  
  562. -- part 109 (button)
  563. -- low flags: 00
  564. -- high flags: 8003
  565. -- rect: left=141 top=175 right=197 bottom=241
  566. -- title width / last selected line: 0
  567. -- icon id / first selected line: 0 / 0
  568. -- text alignment: 1
  569. -- font id: 0
  570. -- text size: 12
  571. -- style flags: 0
  572. -- line height: 16
  573. -- part name: Vendor Screen
  574. ----- HyperTalk script -----
  575. on mouseUp
  576.   answer "This takes you to the Vendor Screen"
  577. end mouseUp
  578.  
  579.  
  580.